"use client" import { t_homeTitle, t_homeSubtitle, t_homeSetup, t_homeDocs, t_homeIllustrationAlt, } from "@shared/i18n/messages/t-home" import Header from "@frontend/components/layout/header" import Menu from "@frontend/components/navigation/menu" import Logo from "@frontend/components/site/logo" import useLocale from "@frontend/hooks/use-locale" import HTML from "@frontend/components/render/html" import Link from "next/link" import MyButton from "@frontend/components/user-input/my-button" import { ExternalLinkIcon } from "lucide-react" export default function PageX() { const locale = useLocale() return ( <>
GitHub
{t_homeIllustrationAlt(locale)}

{t_homeTitle(locale)}

{t_homeSubtitle(locale)}

{t_homeSetup(locale)} {t_homeDocs(locale)}
) }